home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
lang_c
/
mscfunct
/
crt_wpix.c
< prev
next >
Wrap
C/C++ Source or Header
|
1987-05-06
|
230b
|
14 lines
#include <dos.h>
void crt_write_pixel( x, y, color ) int x, y, color;
{
union REGS regs;
regs.h.ah = 12;
regs.h.al = color;
regs.x.dx = y;
regs.x.cx = x;
int86( 0x10, ®s, ®s );
}